C# class, object, method, constructors, getter, setter, static


class (blueprint)

class is basically just a specification for a new data type, so it use to model real word entities inside of our program.

In other words class is like blueprint for a new data type in our program.

Generally when we create new class, we need to name it with capital letter.

constructors

constructors will run every time when the new object is created.

private

Only code that is contained inside of the Book class can access attribute or method with private modifier.

getter, setter

We can use getter to get private attribute value.

We can use setter to validate user input value whether comply with a standard.

static

When we create static modifier, we don't need to initialize actual object before using it.

The static attribute setting attribute or method belong to class not object.

class Book
{
    // attribute
    public string title;
    public string author;
    private int pages;
    public static int bookCount = 0;

    // method
    public bool checkBook() 
    {
    }

    public static void BookName(string name)
    {
        Console.WriteLine(name);
    }

    // getter, setter
    public int Pages
    {
        get{ return pages; }
        set{
            if (value > 0 || value < 100)
            {
                this.pages = value;
            } 
        };
    }

    // constructors
    public Book(string title, string author, string pages)
    {
        this.title = title;
        this.author = author;
        this.pages = pages;
    }
}

object (actual)

The instance of class.

Each individual objecthave their own attribute value.

Book book1 = new Book();
Console.WriteLine(Book.bookCount)
Book.BookName("123")
#C# Note






你可能感興趣的文章

# 〈 Diffusion Model 論文研究與實作心得 Part.3 〉 模型訓練、照片修復與結果呈現 (Finale)

# 〈 Diffusion Model 論文研究與實作心得 Part.3 〉 模型訓練、照片修復與結果呈現 (Finale)

資訊安全:湊雜與加密

資訊安全:湊雜與加密

如何防範 CSRF (Cross-Site Request Forgery)

如何防範 CSRF (Cross-Site Request Forgery)






留言討論